home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 31
/
Aminet 31 (1999)(Schatztruhe)[!][Jun 1999].iso
/
Aminet
/
comm
/
bbs
/
cnet5demo.lha
/
cnet
/
ircrexx
/
alias.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1999-03-23
|
389b
|
13 lines
/* ORC - bypass password security on /alias command */
/* WARNING!!! This is only a sample script to show how to bypass
a security feature of ORC. Not for normal use. */
options results
parse arg orcport a1
if show('P', orcport) then do
address value orcport
cnetirccmd '/"*!* ALIAS password security bypassed'
cnetirccmd '/alias 'orcport' 'a1
end